home *** CD-ROM | disk | FTP | other *** search
- #ifndef _Match_H_
- # define _Match_H_
-
- #include <glob.h>
- #include <sys/stat.h>
- #include <unistd.h>
- #include <ICString.h>
-
- #include "../Config/Config.h"
-
- class Match: public ICString
- {
- public:
- Match(const char *pattern, // Constructor
- Config const &cf);
- ~Match(); // Destructor (2)
- unsigned add_globbed // add globbed patterns
- (const glob_t &glob_struct);
- private:
- glob_t
- glob_struct,
- extra_glob; // used for the extra search
- };
-
- # endif
-